home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xalan.jar / org / apache / xalan / xpath / KeyDeclaration.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-04-12  |  736 b   |  21 lines

  1. package org.apache.xalan.xpath;
  2.  
  3. import java.io.Serializable;
  4.  
  5. public class KeyDeclaration implements Serializable {
  6.    public String m_name;
  7.    public XPath m_match;
  8.    public XPath m_use;
  9.    public static int UNBUILT = -1;
  10.    public static int BUILDING;
  11.    public static int BUILT = 1;
  12.    public int m_buildState;
  13.  
  14.    public KeyDeclaration(String var1, XPath var2, XPath var3) {
  15.       this.m_buildState = UNBUILT;
  16.       this.m_name = var1;
  17.       this.m_match = var2;
  18.       this.m_use = var3;
  19.    }
  20. }
  21.